Release 10.1A: OpenEdge Development:
Progress 4GL Handbook
Defining a single- or multiple-select browse
A browse can support single and multiple selections of rows. By default, a browse is single-select. The
MULTIPLEoption sets up a multiple-select browse. Multiple-selection lets you select any combination of rows from the browse, which you can then access using the appropriate browse attributes and methods.In a multiple-select browse, the user first clicks in a row to select it. To select additional rows without deselecting the first, the user holds down the CTRL key and clicks in each row. Alternatively, the user can click in one row, hold down the mouse key, and drag the cursor through multiple rows to select them all. Clicking on a selected row while pressing CTRL deselects it. Clicking on a row without pressing CTRL selects it and deselects all other rows. In a multiple-select updateable browse, the user must click on one row marker, hold down the mouse button and drag down through the row markers to select multiple contiguous rows.
Note that an updateable browse can only have one selected row when it is in edit mode. So, if the user selects five rows and then an updateable cell, the four rows that do not contain the active cell are deselected.
Note: For a multiple-select browse in character interfaces, selection of each row is switched by the space bar. The close angle bracket (>) indicates each selected row. The same technique applies to both read-only and updateable multiple-select browses.There are several attributes and methods you can use in conjunction with selected rows in a single-selection or multiple-selection browse. You can learn about these in OpenEdge Development: Progress 4GL Reference .
Next, you modify your test procedure to use the
NUM-SELECTED-ROWSattribute and theFETCH-SELECTED-ROWmethod to gather information about a set of selected rows in a multiple-selection browse
![]()
To modify your test procedure:
The
NUM-SELECTED-ROWSattribute returns the number of rows the user has selected in the browse. You can then use theFETCH-SELECTED-ROWmethod, which takes the sequence within the list of selected rows as an argument, to position the query to each selected row in turn, and add up the ExtendedPrice for each of those rows.One question you might have is why is it necessary to define a handle variable to hold the handle of the browse, rather than just referring to it in each statement as
BROWSE OlineBrowse? The browse is not part of the initial frame definition for the window’s frame. It is displayed after the window is initialized. If you refer toBROWSE OlineBrowsein the statements with theNUM-SELECTED-ROWSattribute or theFETCH-SELECTED-ROWmethod, Progress insists that you qualify the reference with a frame name so that it can identify the browse. Normally, you would qualify each reference to make it explicit or else simply put the entire set of references inside aDOblock that defines the context:
But because the browse is not part of the frame at compile time, Progress gives you an error message when you compile the procedure (or when you run it, which compiles it first) to the effect that it can’t find OlineBrowse in frame CustQuery. To get around this, you need to fool Progress into accepting the reference at compile time. To do this, you first set the handle
hBrowsevariable to theHANDLEattribute of the browse, and then use the handle in place of the name. Progress accepts this because handle references are always difficult or impossible to check at compile time, so Progress has to assume that the reference will be valid when the code is executed, which it is.
![]()
To see a total displayed, Run the window, select some OrderLines, and then click the Total button:
![]()
|
Copyright © 2005 Progress Software Corporation www.progress.com Voice: (781) 280-4000 Fax: (781) 280-4095 |